From: Dave Love Date: Mon, 6 Oct 2003 16:25:52 +0000 (+0000) Subject: (completion-ignored-extensions): Remove .log. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~25279 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=9a4e56957ab67561440256ed5baf713c43c25884;p=emacs.git (completion-ignored-extensions): Remove .log. (global-map): Add again, open, stop keys. --- diff --git a/lisp/bindings.el b/lisp/bindings.el index b6e02542a53..04353e9c7ec 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -518,7 +518,9 @@ is okay. See `mode-line-format'.") ;; Gettext ".gmo" ".mo" ;; Texinfo-related - ".toc" ".log" ".aux" + ;; This used to contain .log, but that's commonly used for log + ;; files you do want to see, not just TeX stuff. -- fx + ".toc" ".aux" ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs"))) @@ -776,6 +778,9 @@ language you are using." (define-key global-map [S-insert] 'yank) (define-key global-map [undo] 'undo) (define-key global-map [redo] 'repeat-complex-command) +(define-key global-map [again] 'repeat-complex-command) ; Sun keyboard +(define-key global-map [open] 'find-file) ; Sun +(define-key global-map [stop] 'keyboard-quit) ; Sun ;; (define-key global-map [clearline] 'function-key-error) (define-key global-map [insertline] 'open-line) (define-key global-map [deleteline] 'kill-line)